LCD_SRAM_READ

LCD_SRAM_READ

   
SYNTAX:

        LCD_SRAM_READ(PINS, DATA_COUNT, ARRAY_NAME [, UP_LIMIT=x] [, DOWN_LIMIT=x] [,CLEAR_CONT/CONT_NEXT/PTN_FORCE_STOP/PATTERN_END] [, LOG_OFF] 

         [, BinNo=x] [, IGNORE_FAIL] [, PIN_INC/STEP_INC] [, SITE=x]);

DESCRIPTION:

        Read LCD measure value from SRAM.

REQUIRED ARGUMENT:

         PARA1: PINS

             PIN_GROUP_NAME or PIN_NAME

         PARA2: DATA_COUNT

             Set the count number.

             A integer number. Range: 1~64K.

        PARA3: ARRAY_NAME

            Array name: file name or _C_Variable 

            System buffer name and file name saved the log data. Log data also saved in global array Sys_SW_BUFFER_DATA[][].

            If there are more than two "LCD_SRAM_READ" driver in a prg file, it must set in different name to avoid system conflict. 

OPTIONAL ARGUMENT:

        PARA: UP_LIMIT=x

            x : a voltage value, unit: V, mV or parameter name or GB1~64/MEASURE_VALUE/PinName variable or _C_Variable(double).

        PARA: DOWN_LIMIT=x

            x : a voltage value, unit: V, mV or parameter name or GB1~64/MEASURE_VALUE/PinName variable or C  variable(double).     

        PARA: CLEAR_CONT/CONT_NEXT/PTN_FORCE_STOP/PATTERN_END: 

            CLEAR_CONT: clear the continued running of pattern. Then, pattern and main program will go on simultaneously.

            CONT_NEXT: clear the continued running of pattern and wait for pattern executing to the next MI "CONT" vector or pattern end. Then, main program will go on.

            PTN_FORCE_STOP: doesn't clear the continued running of pattern but break the running pattern forcibly.

            PATTERN_END: clear the continued running of pattern and wait for executing to the pattern end. Then, main program will go on.

            default: NONE

PARA: LOG_OFF

            Set measured value not log to datalog windows, even it is set to be on in engineering set.

            Default: Depend on engineering setting.

PARA: BinNo=x

            x: a integer from 1 to 2048; While test result is fail at this driver, system classify the device to bin x.

        PARA: IGNORE_FAIL 

            This argument is identical to the function "Dc Ignore Fail=On" on engineer setting menu. It ignore the measure result, and go to next driver.

            Default: OFF.

        PARA: PIN_INC/STEP_INC

            Set the data mode.

            
            
            default:PIN_INC.

        PARA: SITE=x

            x : a value. x=1~6.

        

EXAMPLE:

          ARRAY RAW_DATA(2000);

          LCD_SRAM_READ(LCDPIN, 1024, RAW_DATA, STEP_INC);